@import url("https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Caramel&family=Cormorant+Garamond:ital,wght@1,300&family=Hubballi&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  max-width: 1400px;
  display: block;
  margin: auto;
  min-height: 100vh;
  background: #191919;
}

header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: 5px;
  margin-bottom: 2rem;
  margin-right: 20px;
  display: flex;
  justify-content: space-between;
  background: #1a1a1a;
  font-family: "Hubballi", sans-serif;
}

header .navbar a {
  color: #fff;
  font-size: 2rem;
  margin-left: 2rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s;
}

.fa-code {
  padding-left: 5rem;
  font-size: 2rem;
  font-weight: bolder;
  color: #fff;
  display: flex;
}

.navbar a:hover {
  color: #ec2323;
}

#menu-bar {
  font-size: 3rem;
  cursor: pointer;
  color: #666;
  border-radius: 0.3rem;
  padding: 0.5rem 1.5rem;
  display: none;
}

@media screen and (max-width: 960px) {
  #menu-bar {
    display: initial;
  }

  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f7f7f7;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    background: #1a1a1a;
  }

  header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  header .navbar a {
    font-size: 1rem;
    margin: 1rem;
    padding: 1.5rem;
    display: block;
    border: 0.2rem solid rgba(0, 0, 0, 0.1);
    border-left: 0.5rem solid var(--red);
    background: #1a1a1a;
  }
}
@media screen and (max-width: 1180px) {
  header {
    padding: 1rem;
  }

  html {
    font-size: 50%;
  }

  .fa-code {
    font-size: 1rem;
  }
}
/* Home Section */
.home-section.active,
.project-section.active,
.about-section.active,
.contact-section.active {
  position: relative;
  opacity: 1;
  z-index: 8;
}

.home-section {
  width: 100%;
  height: 100vh;
  padding: 0 150px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  opacity: 0;
  transition: 1s;
}

.hero-heading {
  color: #fff;
  font-size: 120px;
  text-transform: capitalize;
  font-weight: 300;
  font-family: "Architects Daughter", sans-serif;
}

@media screen and (max-width: 1180px) {
  .hero-heading {
    font-size: 80px;
  }
}
@media screen and (max-width: 960px) {
  .hero-heading {
    font-size: 50px;
  }

  .home-img {
    left: 2px;
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .hero-heading {
    display: flex;
    font-size: 30px;
  }
}
.home-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  object-fit: cover;
  opacity: 0.2;
}

/* project section */
.project-section {
  width: 100%;
  min-height: 100vh;
  padding: 50px 100px 100px;
  position: fixed;
  top: 0;
  transition: 1s;
  opacity: 0;
}

.project-heading {
  font-size: 100px;
  background: #252525;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 50px;
  color: #1a1a1a;
  -webkit-background-clip: text;
  -webkit-text-stroke: 8px transparent;
  font-family: "Architects Daughter", sans-serif;
}

@media screen and (max-width: 1180px) {
  .project-heading {
    font-size: 80px;
  }
}
@media screen and (max-width: 960px) {
  .project-heading {
    font-size: 40px;
  }

  .project-section {
    padding: 5px;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 960px) {
  .project-heading {
    font-size: 15px;
  }
}
.project-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 100px;
}

.project-card {
  height: auto;
  position: relative;
  max-width: 100%;
}

.project-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}

.project-content {
  position: relative;
  padding: 40px;
  color: #fff;
  transition: 0.5s;
  opacity: 0;
}

.project-title {
  font-size: 50px;
  text-transform: capitalize;
  text-align: center;
  font-weight: 300;
  font-family: "Architects Daughter", sans-serif;
}

@media screen and (max-width: 960px) {
  .project-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-left: 5px;
  }

  .project-content {
    padding: 20px;
  }

  .project-title-2 {
    font-size: 25px !important;
    padding-bottom: 20px;
    padding-top: 10px !important;
  }

  .project-title {
    font-size: 25px !important;
    padding-bottom: 20px;
    padding-top: 10px !important;
  }

  .project-info {
    display: flex;
    font-size: 15px !important;
    line-height: 20px !important;
    padding-bottom: 10px !important;
  }

  .project-info-2 {
    display: flex;
    font-size: 15px !important;
    line-height: 20px !important;
    padding-bottom: 10px !important;
  }

  .project-card {
    height: 300px;
    padding-bottom: 20px;
  }
}
.project-title-2 {
  font-size: 50px;
  text-transform: capitalize;
  text-align: center;
  font-weight: 300;
  color: #000;
  font-family: "Hubballi", sans-serif;
}

.project-info {
  margin: 40px;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  font-family: "Hubballi", sans-serif;
}

.project-info-2 {
  margin: 40px;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #000;
  font-family: "Hubballi", sans-serif;
}

.project-btn-grp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  font-family: "Cormorant Garamond", sans-serif;
}

.project-btn {
  height: 40px;
  text-transform: capitalize;
  font-size: 18px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 821px) {
  .project-btn {
    font-size: 12px;
  }
}
.project-btn.live {
  background: #000;
  border: 2px solid #fff;
}

.project-card:hover .project-img {
  filter: blur(20px);
}

.project-card:hover .project-content {
  opacity: 1;
}

/* About Section */
.about-section {
  width: 100%;
  min-height: 100vh;
  padding: 50px 100px 0;
  position: fixed;
  top: 0;
  transition: 1s;
  opacity: 0;
}

.about {
  width: 100%;
  display: grid;
  grid-template-columns: 30% 65%;
  grid-gap: 40px;
}

.about-img-container {
  position: relative;
}

.about-info {
  color: #fff;
  opacity: 0.6;
  font-size: 20px;
  line-height: 30px;
  font-family: "Hubballi", sans-serif;
}

.p-signing {
  font-family: "Caramel", sans-serif;
  color: #fff;
  font-size: 25px;
}

@media screen and (max-width: 960px) {
  .about-section {
    padding: 0px;
  }

  .about {
    grid-template-columns: none;
  }

  .about-info {
    font-size: 13px;
    line-height: 15px;
    padding: 10px;
  }

  .about-img {
    border: 50px;
  }

  .download-cv-btn {
    font-size: 13px !important;
    padding: 5px 10px !important;
  }
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.download-cv-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  color: #fff;
  border: none;
  font-size: 16px;
  text-transform: capitalize;
  cursor: pointer;
  transition: 0.5s;
  background: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  font-family: "Architects Daughter", sans-serif;
}

.download-cv-btn:hover {
  background: #000;
}

/* skills */
.skill-section {
  position: relative;
  margin: 100px 0;
}

.heading {
  text-align: center;
  font-size: 60px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 100px;
  font-family: "Architects Daughter", sans-serif;
}

@media screen and (max-width: 960px) {
  .heading {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
.skills-container {
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 100px;
  color: #fff;
}

@media screen and (max-width: 960px) {
  .skills-container {
    grid-template-columns: none;
    grid-gap: 50px !important;
  }

  .skill-info {
    margin: 40px !important;
  }

  .skill-level {
    margin-right: 15px;
  }
}
.skill-card {
  position: relative;
}

.skill-img {
  display: block;
  margin: auto;
  height: 200px;
}

.skill-name {
  font-size: 30px;
  font-weight: 300;
  text-align: center;
  text-transform: capitalize;
  margin: 30px 0 20px;
  font-family: "Hubballi", sans-serif;
}

.skill-info {
  text-align: center;
  opacity: 0.5;
  font-size: 15px;
  line-height: 20px;
  margin: 10px;
  font-family: "Hubballi", sans-serif;
}

.skill-level {
  position: absolute;
  top: 80px;
  right: 0;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-radius: 50%;
  border: 10px solid black;
}

.skill-card:nth-child(1) .skill-level {
  background: #ff4f4f28;
  border-color: #ff4f4f;
  color: #ff4f4f;
}

.skill-card:nth-child(2) .skill-level {
  background: #4fa0ff28;
  border-color: #4fa0ff;
  color: #4fa0ff;
}

.skill-card:nth-child(3) .skill-level {
  background: #ffed4f28;
  border-color: #ffed4f;
  color: #ffed4f;
}

.skill-card:nth-child(4) .skill-level {
  background: #4fdfff28;
  border-color: #4fdfff;
  color: #4fdfff;
}

/* Timeline */
.timeline {
  display: block;
  width: 80%;
  margin: 150px auto;
}

.timeline .heading {
  margin-bottom: 150px;
}

.card {
  width: 45%;
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  display: block;
  margin: -50px 0;
  position: relative;
  background: #f00;
}

.card-detail {
  font-family: "Architects Daughter", sans-serif;
}

@media screen and (max-width: 960px) {
  .timeline {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
  }

  .card {
    display: flex;
    flex-wrap: wrap;
    margin: 10px;
    width: 100%;
  }

  .card-title {
    font-size: 20px !important;
  }

  .card:nth-child(even):before {
    content: none !important;
  }

  .card:nth-child(even):after {
    content: none !important;
  }

  .card:nth-child(odd):before {
    content: none !important;
  }

  .card:nth-child(odd):after {
    content: none !important;
  }

  .card:nth-child(even) .card-body:before {
    content: none !important;
  }
}
.card:nth-child(even) {
  margin-left: auto;
}

.card:nth-child(even):before {
  content: "";
  position: absolute;
  left: -15%;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 5px solid #191919;
  border-radius: 50%;
}

.card:nth-child(even):after {
  content: "";
  position: absolute;
  left: -8.5%;
  top: 50%;
  transform: translateY(-50%);
  width: 7%;
  height: 2px;
  background: #fff;
  z-index: -1;
}

.card:nth-child(odd):before {
  content: "";
  position: absolute;
  right: -13%;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 5px solid #191919;
  border-radius: 50%;
}

.card:nth-child(odd):after {
  content: "";
  position: absolute;
  right: -8.5%;
  top: 50%;
  transform: translateY(-50%);
  width: 7%;
  height: 2px;
  background: #fff;
  z-index: -1;
}

.card:nth-child(2),
.card:nth-child(2):before {
  background: #ff4f4f;
}

.card:nth-child(3),
.card:nth-child(3):before {
  background: #ffb84f;
}

.card:nth-child(4),
.card:nth-child(4):before {
  background: #3dca5c;
}

.card:nth-child(5),
.card:nth-child(5):before {
  background: #565252;
}

.card:nth-child(6),
.card:nth-child(6):before {
  background: #4fa0ff;
}

.card:nth-child(even) .card-body:before {
  content: "";
  position: absolute;
  left: -12%;
  top: 0;
  width: 0px;
  height: 100%;
  border: 1px dashed #fff;
  z-index: -1;
}

.card-title {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 20px;
  font-family: "Architects Daughter", sans-serif;
}

/* Contact */
.contact-section {
  position: absolute;
  top: 0;
  opacity: 0;
  transition: 1s;
  padding: 100px 150px;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  margin-bottom: 30px;
  border-radius: 5px;
  color: #fff;
  padding: 5px 10px;
  font-family: "Cormorant Garamond", sans-serif;
}

::placeholder {
  color: #fff;
}

#msg {
  height: 280px;
  resize: none;
}

.form-submit-btn {
  background: #ff4f4f;
  color: #fff;
  text-transform: capitalize;
  padding: 15px 40px;
  display: block;
  margin: auto;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Hubballi", sans-serif;
}

.map {
  width: 100%;
  height: 60%;
  padding: 10px;
  border: 2px solid #fff;
  background: rgba 255, 255, 255, 0.2;
  border-radius: 10px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

@media screen and (max-width: 960px) {
  .contact-section {
    grid-template-columns: none;
    padding: 10px;
    max-width: 100%;
  }

  .contact-form input {
    padding: 10px;
    margin-bottom: 10px;
    height: auto;
  }

  .map {
    height: auto;
    margin-bottom: 20px;
  }

  .form-submit-btn {
    padding: 10px 20px;
  }
}
/* Thank you page */
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
  padding: 40px 0 40px;
  border: 2px solid white;
}

.thanks-heading {
  top: 50%;
  margin: 0 auto;
  color: white;
  font-size: 40px;
  padding: 50px;
  margin-top: 20px;
  margin: 0 auto;
  font-family: "Architects Daughter", sans-serif;
}

.direction {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.icon {
  padding: 20px;
  text-decoration: none;
  font-size: 20px;
}

.fa-instagram {
  border-radius: 40px;
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}

.fa-facebook {
  color: #0275f8;
  border-radius: 40px;
  background: #3704c5;
}

.fa-twitter {
  color: #2682ec;
  border-radius: 40px;
  background: #3704c5;
}

.fa-linkedin {
  color: #2682ec;
  border-radius: 40px;
  background: #3704c5;
}

@media screen and (max-width: 960px) {
  .icon {
    padding: 10px;
  }

  .direction {
    padding: 20px;
  }

  .thanks-heading {
    font-size: 20px;
    padding: 10px;
  }
}

/*# sourceMappingURL=style.css.map */
